home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Archive / Files / Standard File / StandardGetAlias / StandardGetAlias.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.6 KB  |  75 lines  |  [TEXT/CWIE]

  1. #ifndef _STANDARD_GET_FOLDER_
  2. #define _STANDARD_GET_FOLDER_
  3.  
  4. /*
  5.  
  6.      File:        StandardGetFolder.h
  7.  
  8.      Contains:    Public interfaces for the routines in StandardGetFolder.c.
  9.  
  10.     Version:    1.0.4
  11.  
  12.     Copyright:    © 1998-1999 by Apple Computer, Inc., all rights reserved
  13.  
  14.     Technology: Standard File dialogs
  15.  
  16.     Bugs?:        For bug reports, consult the following page on
  17.                 the World Wide Web:
  18.  
  19.                     http://developer.apple.com/bugreporter/
  20.  
  21.     ========================================================================
  22.     You may incorporate this sample code into your applications without
  23.     restriction, though the sample code has been provided “AS IS” and the
  24.     responsibility for its operation is 100% yours.  However, what you are
  25.     not permitted to do is to redistribute the source as “DSC Sample Code”
  26.     after having made changes. If you’re going to re-distribute the source,
  27.     we require that you make it clear in the source that the code was
  28.     descended from Apple Sample Code, but that you’ve made changes.
  29.     ========================================================================
  30.     
  31.     Writers:
  32.  
  33.         (afb)    Andy Bachorski
  34.  
  35.     Change History (most recent first):
  36.  
  37.          <1>      2/9/99    afb        first checked in
  38.  
  39.  
  40. */
  41.  
  42. //******************    Universal Interfaces        ****************************
  43.  
  44. #include <StandardFile.h>
  45.  
  46. #if PRAGMA_ONCE
  47. #pragma once
  48. #endif
  49.  
  50. #ifdef __cplusplus
  51. extern "C" {
  52. #endif
  53.  
  54. #if PRAGMA_IMPORT
  55. #pragma import on
  56. #endif
  57.  
  58. //******************    Puiblic Prototypes            ****************************
  59.  
  60. pascal    void    StandardGetAlias( StandardFileReply *theSFR );
  61.  
  62.  
  63.  
  64. #ifdef PRAGMA_IMPORT_OFF
  65. #pragma import off
  66. #elif PRAGMA_IMPORT
  67. #pragma import reset
  68. #endif
  69.  
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73.  
  74. #endif // _STANDARD_GET_FOLDER_
  75.